-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 972 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "proptypes-schema",
"version": "0.2.1",
"description": "Generic object schema modeled on React PropTypes",
"main": "./lib/index.js",
"scripts": {
"prebuild": "mkdir -p lib",
"build": "babel src --out-dir lib",
"dev": "babel src --watch --out-dir lib",
"test": "NODE_PATH=src mocha 'test/**/*.test.js' --require babel-register",
"tdd": "npm test -- --reporter min --watch",
"clean": "rm -rf lib",
"prepublish": "npm run build"
},
"author": "Eliot Akira",
"license": "MIT",
"keywords": ["proptypes", "schema", "react"],
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"eslint": "^3.4.0",
"mocha": "^3.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliot-akira/proptypes-schema.git"
}
}