forked from rapidjs/rapid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "rapid.js",
"version": "1.0.10",
"description": "",
"main": "dist/rapid.js",
"scripts": {
"test": "npm run unit && npm run lint",
"compile": "babel --presets=es2015 -d dist src",
"copy-dev": "npm run compile && rm -rf ./demo/rapid && cp -R ./dist ./demo/rapid",
"prepublish": "npm run compile",
"lint": "eslint src/**/*.js test/**/*.js",
"unit": "jest --maxWorkers 2",
"unit:watch": "jest test/**/*.test.js --watch"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rapidjs/rapid.js.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rapidjs/rapid.js/issues"
},
"homepage": "https://github.com/rapidjs/rapid.js#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^8.0.2",
"babel-preset-es2015": "^6.24.0",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-airbnb-standard": "^1.6.5",
"eslint-plugin-import": "^2.8.0",
"jest": "^21.2.1"
},
"dependencies": {
"axios": "^0.16.0",
"lodash": "^4.17.4",
"pluralize": "^4.0.0",
"qs": "^6.4.0"
},
"publishConfig": {
"access": "public"
}
}