-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 918 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 918 Bytes
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
{
"name": "plainkit",
"version": "1.0.0",
"browserslist": {
"production": [
"last 2 versions"
]
},
"devDependencies": {
"app-module-path": "^2.2.0",
"autoprefixer": "^8.0.0",
"browserify": "^16.1.0",
"coffeeify": "^3.0.1",
"coffeescript": "^1.12.7",
"mime": "^2.3.1",
"npm-run-all": "^4.1.2",
"postcss-cli": "^5.0.0",
"uglify-js": "^3.3.12",
"watchify": "^3.10.0"
},
"dependencies": {
"between.js": "^0.1.2-fix.2",
"jquery": "^2.1.4",
"lodash": "^4.17.11",
"node-sass": "^5.0.0"
},
"scripts": {
"dev": "npm-run-all --parallel styles:watch scripts:watch",
"build": "npm run styles:build && npm run scripts:build",
"styles:build": "node tools/styles.js build",
"styles:watch": "node tools/styles.js watch",
"scripts:build": "node tools/scripts.js build",
"scripts:watch": "node tools/scripts.js watch"
}
}